UnrolledList.remove

Removes the first instance of the given item from the list.

  1. bool remove(T item)
    struct UnrolledList(T, Allocator = Mallocator, bool supportGC = shouldAddGCRange!T, size_t cacheLineSize = 64)
    bool
    remove
    (
    ref const T item
    )
  2. bool remove(T item)

Return Value

Type: bool

true if something was removed.

Meta